3.14 \(\int \frac {1-x}{1-x^3} \, dx\)

Optimal. Leaf size=19 \[ \frac {2 \tan ^{-1}\left (\frac {2 x+1}{\sqrt {3}}\right )}{\sqrt {3}} \]

[Out]

2/3*arctan(1/3*(1+2*x)*3^(1/2))*3^(1/2)

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 19, normalized size of antiderivative = 1.00, number of steps used = 3, number of rules used = 3, integrand size = 15, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.200, Rules used = {1586, 618, 204} \[ \frac {2 \tan ^{-1}\left (\frac {2 x+1}{\sqrt {3}}\right )}{\sqrt {3}} \]

Antiderivative was successfully verified.

[In]

Int[(1 - x)/(1 - x^3),x]

[Out]

(2*ArcTan[(1 + 2*x)/Sqrt[3]])/Sqrt[3]

Rule 204

Int[((a_) + (b_.)*(x_)^2)^(-1), x_Symbol] :> -Simp[ArcTan[(Rt[-b, 2]*x)/Rt[-a, 2]]/(Rt[-a, 2]*Rt[-b, 2]), x] /
; FreeQ[{a, b}, x] && PosQ[a/b] && (LtQ[a, 0] || LtQ[b, 0])

Rule 618

Int[((a_.) + (b_.)*(x_) + (c_.)*(x_)^2)^(-1), x_Symbol] :> Dist[-2, Subst[Int[1/Simp[b^2 - 4*a*c - x^2, x], x]
, x, b + 2*c*x], x] /; FreeQ[{a, b, c}, x] && NeQ[b^2 - 4*a*c, 0]

Rule 1586

Int[(u_.)*(Px_)^(p_.)*(Qx_)^(q_.), x_Symbol] :> Int[u*PolynomialQuotient[Px, Qx, x]^p*Qx^(p + q), x] /; FreeQ[
q, x] && PolyQ[Px, x] && PolyQ[Qx, x] && EqQ[PolynomialRemainder[Px, Qx, x], 0] && IntegerQ[p] && LtQ[p*q, 0]

Rubi steps

\begin {align*} \int \frac {1-x}{1-x^3} \, dx &=\int \frac {1}{1+x+x^2} \, dx\\ &=-\left (2 \operatorname {Subst}\left (\int \frac {1}{-3-x^2} \, dx,x,1+2 x\right )\right )\\ &=\frac {2 \tan ^{-1}\left (\frac {1+2 x}{\sqrt {3}}\right )}{\sqrt {3}}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 19, normalized size = 1.00 \[ \frac {2 \tan ^{-1}\left (\frac {2 x+1}{\sqrt {3}}\right )}{\sqrt {3}} \]

Antiderivative was successfully verified.

[In]

Integrate[(1 - x)/(1 - x^3),x]

[Out]

(2*ArcTan[(1 + 2*x)/Sqrt[3]])/Sqrt[3]

________________________________________________________________________________________

fricas [A]  time = 0.53, size = 16, normalized size = 0.84 \[ \frac {2}{3} \, \sqrt {3} \arctan \left (\frac {1}{3} \, \sqrt {3} {\left (2 \, x + 1\right )}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((1-x)/(-x^3+1),x, algorithm="fricas")

[Out]

2/3*sqrt(3)*arctan(1/3*sqrt(3)*(2*x + 1))

________________________________________________________________________________________

giac [A]  time = 0.17, size = 16, normalized size = 0.84 \[ \frac {2}{3} \, \sqrt {3} \arctan \left (\frac {1}{3} \, \sqrt {3} {\left (2 \, x + 1\right )}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((1-x)/(-x^3+1),x, algorithm="giac")

[Out]

2/3*sqrt(3)*arctan(1/3*sqrt(3)*(2*x + 1))

________________________________________________________________________________________

maple [A]  time = 0.04, size = 17, normalized size = 0.89 \[ \frac {2 \sqrt {3}\, \arctan \left (\frac {\left (2 x +1\right ) \sqrt {3}}{3}\right )}{3} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((1-x)/(-x^3+1),x)

[Out]

2/3*3^(1/2)*arctan(1/3*(2*x+1)*3^(1/2))

________________________________________________________________________________________

maxima [A]  time = 2.43, size = 16, normalized size = 0.84 \[ \frac {2}{3} \, \sqrt {3} \arctan \left (\frac {1}{3} \, \sqrt {3} {\left (2 \, x + 1\right )}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((1-x)/(-x^3+1),x, algorithm="maxima")

[Out]

2/3*sqrt(3)*arctan(1/3*sqrt(3)*(2*x + 1))

________________________________________________________________________________________

mupad [B]  time = 4.67, size = 16, normalized size = 0.84 \[ \frac {2\,\sqrt {3}\,\mathrm {atan}\left (\frac {\sqrt {3}\,\left (2\,x+1\right )}{3}\right )}{3} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((x - 1)/(x^3 - 1),x)

[Out]

(2*3^(1/2)*atan((3^(1/2)*(2*x + 1))/3))/3

________________________________________________________________________________________

sympy [A]  time = 0.22, size = 26, normalized size = 1.37 \[ \frac {2 \sqrt {3} \operatorname {atan}{\left (\frac {2 \sqrt {3} x}{3} + \frac {\sqrt {3}}{3} \right )}}{3} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((1-x)/(-x**3+1),x)

[Out]

2*sqrt(3)*atan(2*sqrt(3)*x/3 + sqrt(3)/3)/3

________________________________________________________________________________________